-
Notifications
You must be signed in to change notification settings - Fork 168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tbaut remove tab navigation #226
Conversation
@@ -96,9 +90,6 @@ export class TxDetailsView extends React.PureComponent { | |||
title={this.props.sender.name} | |||
address={this.props.sender.address} | |||
chainId={this.props.sender.chainId} | |||
onPress={() => { | |||
this.props.onPressAccount(this.props.sender); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Has there been any issues with navigation here?
(I don't think I ever wanted to navigate from tx screen to account by tapping the icon, or expected that to work that way, so I think it's fine, just curious about the reasons)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There has been no issue opened for this indeed. I stumbled upon this and would not expect this either, hence the removal. I have the bad habit to tackle several issues at once :). I did my best not to shoot in too many directions for this one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have the bad habit to tackle several issues at once :)
how sweet is it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
have you tested the build for iOS? @Tbaut |
Not yet, I'll do it after #225 |
not the best practice |
This PR mainly removes the tabs (Account and Scanner) and sets the AccountList screen as the main screen.
It also fixes a couple things related to the navigation such as #142 :
Tested on Android with Tx and message signing.
There are now 2 buttons (that's at least 1 too many) on the account list, I'll tackle this (#225) in a separate PR
Question: how should I proceed to avoid committing
package-lock.json
, I read it shouldn't be ingitignore
.. what about this annoying wizard inpackage.json
? :)